Pow Function

Returns the value specified raised to the power specified.

Syntax

result = Pow( value, power )


Parameters

value

Double

The value you want to raised to power.

power

Double

The power value is raised to.



Examples

This example uses the Pow function to return four raised to the power of seven.

Dim d As Double
d=Pow(4,7) //returns 16384

See Also

^ operator.